home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 37
/
Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso
/
Aminet
/
dev
/
lang
/
sofa.lha
/
sofa
/
smalleiffel
/
lib_show
/
animal
/
sample2.e
< prev
next >
Wrap
Text File
|
2000-03-25
|
270b
|
21 lines
class SAMPLE2
creation {ANY}
make
feature {ANY}
chat: CHAT;
mille_pattes: MILLE_PATTES;
make is
do
!!chat;
!!mille_pattes;
chat.felicitations(chien);
mille_pattes.felicitations(chat);
end;
end -- SAMPLE2